home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / MenuHack / MenuHackSource.sit / jGNELib.h < prev    next >
Text File  |  1996-06-21  |  621b  |  18 lines

  1. /*------------------------------------------------------------------------------
  2. #
  3. #    jGNEFilter Code Resource Library
  4. #
  5. #    This routine loads a small 68K resource that acts as a "safe" jGNEFilter connector (allows
  6. #    hooking and unhooking at will.
  7. #
  8. #    Copyright © CE Software, Inc., Inc. 1996
  9. #    All rights reserved.
  10. #
  11. ------------------------------------------------------------------------------*/
  12.  
  13. typedef pascal Boolean (*jEventProcPtr)(EventRecord* event, long refcon);
  14.  
  15. void    InitjGNEProcLib(void);    //This loads the resource into memory if necessary
  16. void    HookjGNE(long thejGNEProc, long    refcon);
  17. void    UnHookjGNE(void);
  18.